home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Systemmonitors / LastAlert2 / Install-script < prev    next >
Text File  |  1996-09-26  |  1KB  |  68 lines

  1.  
  2. ; Install script for LastAlert2
  3.  
  4. (set #bad-kick
  5. (cat "You must be using Kickstart 2.04 or higher to use LastAlert2."
  6. ))
  7.  
  8. ;=============================================================================
  9.  
  10. ; make sure we are running under a 2.04 ROM
  11.  
  12. (if (< (/ (getversion) 65536) 37)
  13. (
  14.     (abort #bad-kick)
  15. ))
  16.  
  17. ;=============================================================================
  18.  
  19. (set name
  20.     (askfile
  21.         (prompt "OK, where to install LastAlert2 ??")
  22.         (help @askfile-help)
  23.         (default "SYS:WbStartup")
  24.     )
  25. )
  26.  
  27. (copyfiles
  28. (
  29.     (prompt "Copying LastAlert2...")
  30.     (help @copyfiles-help)
  31.     (source "")
  32.     (choices "LastAlert2")
  33.     (dest name)
  34. ))
  35.  
  36. ;=============================================================================
  37.  
  38. (set icon
  39.     (askchoice
  40.         (prompt "What icon do you want ??")
  41.         (help @askoptions-help)
  42.         (choices "Magic Workbench Icon" "Ugly 4 Colors Icon")
  43.         (default 0)
  44.     )
  45. )
  46.  
  47.  
  48. (if (= icon 1)
  49.     (copyfiles
  50.     (
  51.         (prompt "Copying LastAlert2.info...")
  52.         (help @copyfiles-help)
  53.         (source "")
  54.         (choices "4 Colors Icon/LastAlert2.info")
  55.         (dest name)
  56.     ))
  57.     (copyfiles
  58.     (
  59.         (prompt "Copying LastAlert2.info...")
  60.         (help @copyfiles-help)
  61.         (source "")
  62.         (choices "LastAlert2.info")
  63.         (dest name)
  64.     ))
  65. )
  66.  
  67. ;=============================================================================
  68.